home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / VersionInfo.h < prev    next >
Text File  |  1995-06-12  |  788b  |  48 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Locus project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Locus
  15.  
  16.     File: VersionInfo.h
  17.  
  18.     Description:
  19.     
  20.     A category of Object defining some standard Version reporting methods
  21.     
  22.     Original Author: Jeremy Slade
  23.  
  24.     Revision History:
  25.         Created
  26.             V.101    JGS    Mon Feb  1 22:38:17 GMT-0700 1993
  27.  
  28. */
  29.  
  30. #ifndef VersionInfo_h
  31. #define VersionInfo_h
  32.  
  33. #define VersionInfo_VERSION    (101)
  34.  
  35.  
  36. #import <objc/Object.h>
  37.  
  38.  
  39. @interface Object ( VersionInfo )
  40.  
  41. // Version Info
  42. + (int)projectVersion;
  43. + (const char *)projectVersionString;
  44.  
  45. @end
  46.  
  47. #endif // VersionInfo_h
  48.